home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1993 / MacHack 1993.toast / MacHack™ 1987-1992 / MacHack™ '90 / Other Stuff / Demos ƒ / TOPS SoftTalk Package / MiniMacApp Headers / CObject.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-05-06  |  568 b   |  21 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CObject.h
  3.  
  4.         Interface for the Object Class
  5.         
  6.         Copyright © 1989 Symantec Corporation. All rights reserved.
  7.  
  8.  ******************************************************************************/
  9.  
  10. #define _H_CObject
  11.  
  12. #include <oops.h>                        /* THINK C interface for objects    */
  13.  
  14. struct CObject : indirect {                /* Class Declaration                */
  15.                                     /** Instance Variables **/
  16.                                         /* None                                */
  17.                                         
  18.                                     /** Instance Methods **/
  19.     void        Dispose(void);
  20.     CObject        *Copy(void);
  21. };